perl-html-form: restructure and update to 6.12
authorJens Wagner <[email protected]>
Tue, 17 Jun 2025 00:50:56 +0000 (02:50 +0200)
committerJosef Schlehofer <[email protected]>
Sun, 6 Jul 2025 14:21:08 +0000 (16:21 +0200)
Changed maintainer to @jw2013
Updated Makefile to use metacpan.mk download helper

Changelog: https://metacpan.org/dist/HTML-Form/changes

Signed-off-by: Jens Wagner <[email protected]>
lang/perl/perl-html-form/Makefile

index 04cc0846a9351841357d5c56eadf1bc2621698b4..de7020715b96b6f398c0351f6277c8a06cc55120 100644 (file)
@@ -1,48 +1,45 @@
-#
-# Copyright (C) 2015 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=perl-html-form
-PKG_VERSION:=6.07
+PKG_VERSION:=6.12
 PKG_RELEASE:=1
 
-PKG_SOURCE:=HTML-Form-$(PKG_VERSION).tar.gz
-PKG_SOURCE_URL:=https://cpan.metacpan.org/authors/id/O/OA/OALDERS
-PKG_HASH:=7daa8c7eaff4005501c3431c8bf478d58bbee7b836f863581aa14afe1b4b6227
-PKG_BUILD_DIR:=$(BUILD_DIR)/perl/HTML-Form-$(PKG_VERSION)
+METACPAN_NAME:=HTML-Form
+METACPAN_AUTHOR:=OALDERS
+PKG_HASH:=2ced87d0878afa007d22c41927f0e8da63844608f20881f645f364dc32cdce6f
 
-PKG_MAINTAINER:=Marcel Denia <[email protected]>
+PKG_MAINTAINER:=Jens Wagner <[email protected]>
 PKG_LICENSE:=GPL-1.0-or-later Artistic-1.0-Perl
 PKG_LICENSE_FILES:=LICENSE
 
+include ../metacpan.mk
 include $(INCLUDE_DIR)/package.mk
-include ../perl/perlmod.mk
+include ../perlmod.mk
 
 define Package/perl-html-form
   SUBMENU:=Perl
   SECTION:=lang
   CATEGORY:=Languages
   TITLE:=Class that represents an HTML form element
-  URL:=https://search.cpan.org/dist/HTML-Form/
-  DEPENDS:=perl +perl-html-parser +perl-http-message +perl-uri +perlbase-encode +perlbase-essential
+  URL:=https://metacpan.org/pod/HTML::Form
+  DEPENDS:=perl +perlbase-encode +perlbase-essential +perl-html-parser +perl-http-message +perl-uri
+endef
+
+define Package/perl-html-form/description
+  Objects of the HTML::Form class represents a single HTML
+  <form> ... </form> instance.
 endef
 
 define Build/Configure
-        $(call perlmod/Configure,,)
+    $(call perlmod/Configure,,)
 endef
 
 define Build/Compile
-        $(call perlmod/Compile,,)
+    $(call perlmod/Compile,,)
 endef
 
 define Package/perl-html-form/install
-        $(call perlmod/Install,$(1),HTML auto/HTML)
+    $(call perlmod/Install,$(1),HTML)
 endef
 
-
 $(eval $(call BuildPackage,perl-html-form))